Nevron Open Vision Documentation
Nevron.Nov Namespace / Function<TArg1,TArg2> Delegate


In This Topic
    Function<TArg1,TArg2> Delegate
    In This Topic
    Delegate for a void function that has two arguments of type TArg1 and TArg2 respectively.
    Syntax
    'Declaration
     
    
    Public Delegate Sub Function
        (Of TArg1,TArg2)( _
       ByVal arg1 As TArg1, _
       ByVal arg2 As TArg2 _
    ) 
    'Usage
     
    
    Dim instance As New Function(Of TArg1,TArg2)(AddressOf HandlerMethod)
    public delegate void Function<TArg1,TArg2>( 
       TArg1 arg1,
       TArg2 arg2
    )

    Parameters

    arg1
    arg2

    Type Parameters

    TArg1
    TArg2
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also